home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / handson / archive / Issue147 / Delphi files / pcplus.147.handson.delphi.files.exe / lpad2.dpr < prev    next >
Encoding:
Text File  |  1998-09-23  |  258 b   |  15 lines

  1. program Lpad2;
  2.  
  3. uses
  4.   Forms,
  5.   Lpunit in 'LPUNIT.PAS' {Form1},
  6.   errordlgunit in 'errordlgunit.pas' {ErrorDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TErrorDlg, ErrorDlg);
  13.   Application.Run;
  14. end.
  15.